home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MDIMFC.PAK / MAINFRM.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  75 lines

  1. // mainfrm.cpp : implementation of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "bounce.h"
  15. #include "hello.h"
  16. #include "mdi.h"
  17.  
  18. #include "mainfrm.h"
  19.  
  20. #ifdef _DEBUG
  21. #undef THIS_FILE
  22. static char BASED_CODE THIS_FILE[] = __FILE__;
  23. #endif
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CMainFrame
  27.  
  28. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  29.  
  30. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  31.     //{{AFX_MSG_MAP(CMainFrame)
  32.     ON_COMMAND(IDM_BOUNCE, OnBounce)
  33.     ON_COMMAND(IDM_HELLO, OnHello)
  34.     //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36.  
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CMainFrame construction/destruction
  40.  
  41. CMainFrame::CMainFrame()
  42. {
  43. }
  44.  
  45. CMainFrame::~CMainFrame()
  46. {
  47. }
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMainFrame commands
  52.  
  53.  
  54. void CMainFrame::OnBounce()
  55. {
  56.     CBounceWnd *pBounceWnd = new CBounceWnd;
  57.     if (!pBounceWnd->Create(_T("Bounce"),
  58.         WS_CHILD | WS_VISIBLE | WS_OVERLAPPEDWINDOW, rectDefault, this))
  59.         return;
  60.  
  61.     // the default PostNcDestroy handler will delete this object when destroyed
  62. }
  63.  
  64.  
  65. void CMainFrame::OnHello()
  66. {
  67.     CHelloWnd *pHelloWnd = new CHelloWnd;
  68.     if (!pHelloWnd->Create(_T("Hello"),
  69.         WS_CHILD | WS_VISIBLE | WS_OVERLAPPEDWINDOW,
  70.         rectDefault, this))
  71.         return;
  72.  
  73.     // the default PostNcDestroy handler will delete this object when destroyed
  74. }
  75.